Skip to content

Instantly share code, notes, and snippets.

@jhwheeler
jhwheeler / bigONotation.js
Last active July 29, 2026 20:31
Big O Notation Exercises
// 1. Even or odd
function isEven(value){
if (value % 2 == 0){
return true;
}
else
return false;
}

How to continue?

This a curate guide to continue your preparation for technical coding interviews, with resources, tips, and practice problems organized by topic. Enjoyed πŸ™Œ

πŸ“š Additional Resources

Online Platforms

  • LeetCode - The most popular platform for coding interview prep. Start with their "Top Interview Questions" collections.
  • NeetCode - Curated list of 150 best LeetCode problems with video explanations.
  • GeeksforGeeks - Comprehensive explanations and problems for every data structure and algorithm.
@notnotrobby
notnotrobby / cgp.md
Last active July 29, 2026 20:26
List of free resources to study computer graphics programming.
name explain-diff-html
description Use when the user asks for a rich explanation of a code change, diff, branch, or PR. Produces HTML output.

Explain Diff

Please make me a rich, interactive explanation of the specified code change.

It should have these sections:

@joshleecreates
joshleecreates / vm-profile.nix
Last active July 29, 2026 20:28
NixOS VM Profile
{ config, pkgs, modulesPath, lib, system, ... }:
{
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
config = {
#Provide a default hostname
networking.hostName = lib.mkDefault "base";
@timvisee
timvisee / falsehoods-programming-time-list.md
Last active July 29, 2026 20:19
Falsehoods programmers believe about time, in a single list

Falsehoods programmers believe about time

This is a compiled list of falsehoods programmers tend to believe about working with time.

Don't re-invent a date time library yourself. If you think you understand everything about time, you're probably doing it wrong.

Falsehoods

  • There are always 24 hours in a day.
  • February is always 28 days long.
  • Any 24-hour period will always begin and end in the same day (or week, or month).
@oneamitj
oneamitj / Activate_Windows_8_8.1_10_and_11_Pro_for_Free.md
Created June 19, 2024 15:32
Activate Windows 8, 8.1, 10 and 11 Pro for Free

Activate Windows 8, 8.1, 10 and 11 Pro for Free

A guide how to get and activate Windows 8, 8.1, 10 and 11 Pro for free!

NOTE

If you see the Windows keyboard button in this guide; and you can't find it on your keyboard, you likely have/had Windows 10 which has the button . If you can't find that one, you likely have a PC that has been upgraded to Windows 8/8.1/10/11 from Windows 8.1/8/7/Vista/XP and other ones. If you have one of those, refer the Windows key button to as yours. A list of them is below:

Windows key buttons

- Windows 11

- Windows 10

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@subfuzion
subfuzion / curl.md
Last active July 29, 2026 20:07
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.

@hschickdevs
hschickdevs / gist:4b790266d8a23c66b26c0055ae228b2c
Created July 29, 2026 17:39
Run Claude Code with Opus 4.8 with Full Permissions
claude --model claude-opus-4-8 --permission-mode dontAsk